JS 30 - Day 4 - Array Cardio Day 1

Psst: have a look at the JavaScript Console 💁

Array.prototype.filter()

Filter the list of inventors for those who were born in the 1500's

    Array.prototype.map()

    Give us an array of the inventors first and last names

      Array.prototype.sort()

      Sort the inventors by birthdate, oldest to youngest

        Array.prototype.reduce()

        How many years did all the inventors live all together?

          Sort the inventors by years lived
            123